home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / forth / pfe-0.000 / pfe-0 / pfe-0.9.13 / src / config / AIX1 / options.mk
Encoding:
Text File  |  1995-05-19  |  635 b   |  30 lines

  1. #
  2. # AIX1/options.mk --- part of Makefile, defines compiler options for AIX 1.2
  3. #
  4.  
  5. # The IBM compiler compiles pfe, but the result doesn't run (`longjmp botch'
  6. # whatever that means). I didn't find the ancient system worth the effort to
  7. # find out why yet.
  8. # With gcc specifying -Wall causes lots of warnings from the header files.
  9.  
  10. PREFIX    = /usr/local
  11. PFELIB    = $(PREFIX)/lib/pfe
  12. PFEHLP    = $(PFELIB)/help
  13.  
  14. SYSTEM    = AIX1
  15.  
  16. CC    = gcc -pipe
  17. OPTIM    = -O2 -fomit-frame-pointer -DUSE_REGS -DUNROLL_NEXT
  18. DEBUG    = -g -O
  19.  
  20. CL    = $(CC)
  21. CPP    = $(CC) -E
  22. OPTIONS    = -DHAVE_SELECT
  23. STRIP    = -s
  24. TERM_O    = termunix$o
  25. SYS_O    = unix$o
  26. LFLAGS    = 
  27. LIBS    = -lcurses -lm
  28.  
  29.  
  30.